From 40d0c4fa4de9dcd5a583f9821126529bc9bc727d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 2 Oct 2006 08:50:50 +0000 Subject: [PATCH] (sh-prev-thing): Fix last change. --- lisp/progmodes/sh-script.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index 4032c9ce933..089715b4836 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -2472,8 +2472,8 @@ we go to the end of the previous line and do not check for continuations." (point)) (skip-chars-backward " \t;") (unless (looking-at "\\s-*;;") - (skip-chars-backward "^)}];\"'`({[") - (setq c (char-before)) + (skip-chars-backward "^)}];\"'`({[") + (setq c (char-before))) (sh-debug "stopping at %d c is %s start=%d min-point=%d" (point) c start min-point) (if (< (point) min-point) @@ -2508,7 +2508,7 @@ we go to the end of the previous line and do not check for continuations." ;; c -- return a string (char-to-string c) )) - ))))) + )))) (defun sh-this-is-a-continuation () -- 2.30.2